/* ==========================================================
   1. RESET & INITIALIZATION
   ========================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Times New Roman", Times, serif, "Georgia";
}

body {
  background-color: #f8efe0; /* Krem Halus */
  color: #0e1e38; /* Navy Gelap */
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ==========================================================
   2. NAVBAR LOCK PREVENTS COLLAPSE
   ========================================================== */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 8%;
  z-index: 100;
}

.logo {
  font-family: "karethtrial";
  color: #f9f6e5;
  font-weight: normal;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.2rem;
}

nav ul li a {
  font-family: "flair display";
  color: #f9f6e5;
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.85;
  transition: 0.3s ease;
}

nav ul li a.active,
nav ul li a:hover {
  color: #e6c687;
  opacity: 1;
}

/* ==========================================================
   3. HERO AREA (ANTI-SHIFT WHEN ZOOMED)
   ========================================================== */
.hero-aboutus {
  position: relative;
  padding: 14rem 8% 12rem 8%;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("../Aset/Batik1.jpeg") no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start !important;
  text-align: left !important;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1200px;
  margin: 0;
}

.hero-content h1 {
  font-size: 2.85rem;
  font-family: "karethtrial";
  color: #f9f6e5;
  font-weight: normal;
  margin-bottom: 0.5rem;
}

.breadcrumb {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.breadcrumb span {
  color: #fff;
  font-weight: bold;
}

/* WAVES CONFIGURATION */
.wave-container {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.wave-container svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 150px;
}

/* ==========================================================
   4. TWO-COLUMN PROFILE CONTENT
   ========================================================== */
.profile-section {
  padding: 5rem 8% 3rem 8%;
  background-color: #f9f6e5;
  width: 100%;
}

.profile-container {
  display: flex;
  align-items: flex-start;
  gap: 4.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.profile-image {
  flex: 1;
  max-width: 420px;
}

.profile-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.profile-text {
  flex: 1.5;
  text-align: left !important;
}

.profile-text p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #0e1e38;
  margin-bottom: 2rem;
  text-align: justify;
}

.profile-text p.highlight-p {
  font-family: "flair display";
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.8rem;
  color: #0e1e38;
  text-align: left;
}

/* ==========================================================
   5. THREE PILLARS VALUES (ROW LAYOUT WITH TEXT-LEFT)
   ========================================================== */
.pillars-section {
  padding: 3rem 8% 6rem 8%;
  background-color: #f8efe0;
  width: 100%;
}

.pillars-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.pillar-card {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  text-align: left;
}

.icon-circle {
  width: 5.5rem;
  height: 5.5rem;
  background-color: #eadcb9; /* Gold Krem Lingkaran */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  flex-shrink: 0;
}

.pillar-info {
  display: flex;
  flex-direction: column;
}

.pillar-info h3 {
  font-family: "karethtrial";
  color: #f9f6e5;
  font-size: 1.5rem;
  color: #0e1e38;
  margin-bottom: 0.5rem;
  font-weight: normal;
}

.pillar-info p {
  font-family: "flair display";
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
}

/* ==========================================================
   6. FOOTER
   ========================================================== */
footer {
  position: relative;
  background-color: #0e1e38;
  color: #fff;
  padding: 160px 8% 40px 8%;
}

.wave-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.wave-top svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 130px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-about h3 {
  font-family: "Karethtrial";
  font-weight: normal;
  font-size: 1.35rem;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}

.footer-about p {
  font-family: "flair display";
  color: #f9f6e5;
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: "karethtrial";
  color: #f9f6e5;
  font-weight: normal;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  font-family: "flair display";
  color: #f9f6e5;
  text-decoration: none;
  font-size: 0.85rem;
  opacity: 0.65;
  transition: 0.3s ease;
}

.footer-col ul li a:hover {
  opacity: 1;
  color: #e6c687;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ==========================================================
   7. STABLE RESPONSIVE IMMUNITY BREAKPOINTS
   ========================================================== */
@media (max-width: 992px) {
  .profile-container {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
  .profile-image {
    max-width: 100%;
  }
  .pillars-container {
    flex-direction: column;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  header {
    padding: 1.5rem 6%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  nav {
    display: block;
    width: 100%;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1rem;
  }

  nav ul li a {
    font-size: 0.85rem;
  }

  .hero-aboutus {
    padding: 11rem 6% 6rem 6%;
  }

  .hero-content h1 {
    font-size: 2.1rem;
  }

  .profile-text p.highlight-p {
    font-size: 1.3rem;
  }

  .profile-text p {
    font-size: 1.1rem;
  }

  .wave-container svg {
    height: 90px;
  }
  .wave-top svg {
    height: 80px;
  }
}

@media (max-width: 480px) {
  .hero-aboutus {
    padding: 9rem 5% 5rem 5%;
  }
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .profile-text p,
  .profile-text p.highlight-p {
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .wave-container svg {
    height: 65px;
  }
  .wave-top svg {
    height: 55px;
  }
}
